home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 48 / PC Gamer IT CD 48 2-2.iso / Starsiege / tribesdemo.exe / Disk1 / data1.cab / Tribes_Demo / base / scripts.vol / turret.cs < prev    next >
Encoding:
Text File  |  1999-09-14  |  9.9 KB  |  424 lines

  1. //----------------------------------------------------------------------------
  2. // TURRET DYNAMIC DATA
  3.  
  4. TurretData PlasmaTurret
  5. {
  6.     maxDamage = 1.0;
  7.     maxEnergy = 200;
  8.     minGunEnergy = 75;
  9.     maxGunEnergy = 6;
  10.     reloadDelay = 0.8;
  11.     fireSound = SoundPlasmaTurretFire;
  12.     activationSound = SoundPlasmaTurretOn;
  13.     deactivateSound = SoundPlasmaTurretOff;
  14.     whirSound = SoundPlasmaTurretTurn;
  15.     range = 100;
  16.     dopplerVelocity = 0;
  17.     castLOS = true;
  18.     supression = false;
  19.     mapFilter = 2;
  20.     mapIcon = "M_turret";
  21.     visibleToSensor = true;
  22.     debrisId = defaultDebrisMedium;
  23.     className = "Turret";
  24.     shapeFile = "hellfiregun";
  25.     shieldShapeName = "shield_medium";
  26.     speed = 2.0;
  27.     speedModifier = 2.0;
  28.     projectileType = FusionBolt;
  29.     damageSkinData = "objectDamageSkins";
  30.     shadowDetailMask = 8;
  31.     explosionId = LargeShockwave;
  32.     description = "Plasma Turret";
  33. };
  34.                                                                                          
  35. TurretData ELFTurret       
  36. {             
  37.     maxDamage = 1.0;
  38.     maxEnergy = 150;
  39.     minGunEnergy = 50;
  40.     maxGunEnergy = 5;
  41.     range = 40;
  42.     visibleToSensor = true;
  43.     dopplerVelocity = 0;
  44.     castLOS = true;
  45.     supression = false;
  46.     mapFilter = 2;
  47.     mapIcon = "M_turret";
  48.     debrisId = defaultDebrisMedium;
  49.     className = "ELF Turret";
  50.     shapeFile = "chainturret";
  51.     shieldShapeName = "shield";
  52.     speed = 5.0;
  53.     speedModifier = 1.5;
  54.     projectileType = turretCharge;
  55.     reloadDelay = 0.3;
  56.     explosionId = LargeShockwave;
  57.     description = "ELF Turret";
  58.  
  59.     fireSound        = SoundGeneratorPower;
  60.     activationSound  = SoundChainTurretOn;
  61.     deactivateSound  = SoundChainTurretOff;
  62.     damageSkinData   = "objectDamageSkins";
  63.     shadowDetailMask = 8;
  64.  
  65.    isSustained     = true;
  66.    firingTimeMS    = 750;
  67.    energyRate      = 30.0;
  68. };
  69.  
  70. TurretData RocketTurret
  71. {
  72.     maxDamage = 0.75;
  73.     maxEnergy = 100;
  74.     minGunEnergy = 60;
  75.     maxGunEnergy = 60;
  76.     range = 150;
  77.     gunRange = 300;
  78.     visibleToSensor = true;
  79.     dopplerVelocity = 0;
  80.     castLOS = true;
  81.     supression = false;
  82.     mapFilter = 2;
  83.     mapIcon = "M_turret";
  84.     debrisId = defaultDebrisLarge;
  85.     className = "Turret";
  86.     shapeFile = "missileturret";
  87.     shieldShapeName = "shield_medium";
  88.     speed = 2.0;
  89.     speedModifier = 2.0;
  90.     projectileType = TurretMissile;
  91. //    reloadDelay = 3.5;
  92.     fireSound = SoundMissileTurretFire;
  93.     activationSound = SoundMissileTurretOn;
  94.     deactivateSound = SoundMissileTurretOff;
  95. //    whirSound = SoundMissileTurretTurn;
  96.     damageSkinData = "objectDamageSkins";
  97.     shadowDetailMask = 8;
  98.    targetableFovRatio = 0.5;
  99.     explosionId = LargeShockwave;
  100.     description = "Rocket Turret";
  101. };
  102.  
  103. function RocketTurret::onPower(%this,%power,%generator)
  104. {
  105.     if (%power) {
  106.         %this.shieldStrength = 0.03;
  107.         GameBase::setRechargeRate(%this,14);
  108.     }
  109.     else {
  110.         %this.shieldStrength = 0;
  111.         GameBase::setRechargeRate(%this,0);
  112.         Turret::checkOperator(%this);
  113.     }
  114.     GameBase::setActive(%this,%power);
  115. }
  116.  
  117. function RocketTurret::verifyTarget(%this,%target)
  118. {
  119.    if (GameBase::virtual(%target, "getHeatFactor") >= 0.5)
  120.       return "True";
  121.    else
  122.       return "False";
  123. }
  124.  
  125. //--------------------------------------------
  126.  
  127. TurretData MortarTurret
  128. {
  129.     maxDamage = 1.0;
  130.     maxEnergy = 45;
  131.     minGunEnergy = 45;
  132.     maxGunEnergy = 100;
  133.     reloadDelay = 2.0;
  134.     fireSound = SoundMortarTurretFire;
  135.     activationSound = SoundMortarTurretOn;
  136.     deactivateSound = SoundMortarTurretOff;
  137.     whirSound = SoundMortarTurretTurn;
  138.     range = 0;
  139.     dopplerVelocity = 0;
  140.     castLOS = true;
  141.     supression = false;
  142.     mapFilter = 2;
  143.     mapIcon = "M_turret";
  144.     visibleToSensor = true;
  145.     debrisId = defaultDebrisMedium;
  146.     className = "Turret";
  147.     shapeFile = "mortar_turret";
  148.     shieldShapeName = "shield_medium";
  149.     speed = 2.0;
  150.     speedModifier = 2.0;
  151.     projectileType = MortarTurretShell;
  152.     damageSkinData = "objectDamageSkins";
  153.     shadowDetailMask = 8;
  154.     explosionId = LargeShockwave;
  155.     description = "Mortar Turret";
  156. };
  157.                                                                                          
  158. //--------------------------------------------
  159.  
  160. TurretData IndoorTurret
  161. {
  162.     className = "Turret";
  163.     shapeFile = "indoorgun";
  164.     projectileType = MiniFusionBolt;
  165.     maxDamage = 2.5;
  166.     maxEnergy = 60;
  167.     minGunEnergy = 20;
  168.     maxGunEnergy = 6;
  169.     reloadDelay = 0.4;
  170.     speed = 5.0;
  171.     speedModifier = 1.0;
  172.     range = 25;
  173.     visibleToSensor = true;
  174.     dopplerVelocity = 2;
  175.     castLOS = true;
  176.     supression = false;
  177.     supressable = false;
  178.     pinger = false;
  179.     mapFilter = 2;
  180.     mapIcon = "M_turret";
  181.     debrisId = defaultDebrisMedium;
  182.     shieldShapeName = "shield";
  183.     fireSound = SoundEnergyTurretFire;
  184.     activationSound = SoundEnergyTurretOn;
  185.     deactivateSound = SoundEnergyTurretOff;
  186.     damageSkinData = "objectDamageSkins";
  187.     shadowDetailMask = 8;
  188.     explosionId = debrisExpMedium;
  189.     description = "Indoor Turret";
  190.  
  191. };
  192.  
  193.  
  194. //--------------------------------------------
  195.  
  196. TurretData DeployableTurret
  197. {
  198.     className = "Turret";
  199.     shapeFile = "remoteturret";
  200.     projectileType = MiniFusionBolt;
  201.     maxDamage = 0.65;
  202.     maxEnergy = 60;
  203.     minGunEnergy = 6;
  204.     maxGunEnergy = 5;
  205.     sequenceSound[0] = { "deploy", SoundActivateMotionSensor };
  206.     reloadDelay = 0.4;
  207.     speed = 4.0;
  208.     speedModifier = 1.5;
  209.     range = 30;
  210.     visibleToSensor = true;
  211.     shadowDetailMask = 4;
  212.     dopplerVelocity = 0;
  213.     castLOS = true;
  214.     supression = false;
  215.     mapFilter = 2;
  216.     mapIcon = "M_turret";
  217.     debrisId = flashDebrisMedium;
  218.     shieldShapeName = "shield";
  219.     fireSound = SoundRemoteTurretFire;
  220.     activationSound = SoundRemoteTurretOn;
  221.     deactivateSound = SoundRemoteTurretOff;
  222.     explosionId = flashExpMedium;
  223.     description = "Remote Turret";
  224.     damageSkinData = "objectDamageSkins";
  225. };
  226.  
  227. function DeployableTurret::onAdd(%this)
  228. {
  229.     schedule("DeployableTurret::deploy(" @ %this @ ");",1,%this);
  230.     GameBase::setRechargeRate(%this,5);
  231.     %this.shieldStrength = 0;
  232.     if (GameBase::getMapName(%this) == "") {
  233.         GameBase::setMapName (%this, "Remote Turret");
  234.     }
  235. }
  236.  
  237. function DeployableTurret::deploy(%this)
  238. {
  239.     GameBase::playSequence(%this,1,"deploy");
  240. }
  241.  
  242. function DeployableTurret::onEndSequence(%this,%thread)
  243. {
  244.     GameBase::setActive(%this,true);
  245. }
  246.  
  247. function DeployableTurret::onDestroyed(%this)
  248. {
  249.     Turret::onDestroyed(%this);
  250.       $TeamItemCount[GameBase::getTeam(%this) @ "TurretPack"]--;
  251. }
  252.  
  253. // Override base class just in case.
  254. function DeployableTurret::onPower(%this,%power,%generator) {}
  255. function DeployableTurret::onEnabled(%this) 
  256. {
  257.     GameBase::setRechargeRate(%this,5);
  258.     GameBase::setActive(%this,true);
  259. }    
  260.  
  261.  
  262. //--------------------------------------------
  263.  
  264. TurretData CameraTurret
  265. {
  266.     className = "Turret";
  267.     shapeFile = "camera";
  268.     maxDamage = 0.25;
  269.     maxEnergy = 10;
  270.     speed = 20;
  271.     speedModifier = 1.0;
  272.     range = 50;
  273.     sequenceSound[0] = { "deploy", SoundActivateMotionSensor };
  274.     visibleToSensor = true;
  275.     shadowDetailMask = 4;
  276.     castLOS = true;
  277.     supression = false;
  278.     supressable = false;
  279.     mapFilter = 2;
  280.     mapIcon = "M_camera";
  281.     debrisId = defaultDebrisSmall;
  282.     FOV = 0.707;
  283.     pinger = false;
  284.     explosionId = debrisExpMedium;
  285.     description = "Camera";
  286. };
  287.  
  288. function CameraTurret::onAdd(%this)
  289. {
  290.     schedule("CameraTurret::deploy(" @ %this @ ");",1,%this);
  291.     if (GameBase::getMapName(%this) == "") {
  292.         GameBase::setMapName (%this, "Camera");
  293.     }
  294. }
  295.  
  296. function CameraTurret::deploy(%this)
  297. {
  298.     GameBase::playSequence(%this,1,"deploy");
  299. }
  300.  
  301. function CameraTurret::onEndSequence(%this,%thread)
  302. {
  303.     GameBase::setActive(%this,true);
  304. }
  305.  
  306. function CameraTurret::onDestroyed(%this)
  307. {
  308.     Turret::onDestroyed(%this);
  309.       $TeamItemCount[GameBase::getTeam(%this) @ "CameraPack"]--;
  310. }    
  311.  
  312.  
  313. //---------------------------------------------------
  314.  
  315. function Turret::onAdd(%this)
  316. {
  317.     if (GameBase::getMapName(%this) == "") {
  318.         GameBase::setMapName (%this, "Turret");
  319.     }
  320. }
  321.  
  322. function Turret::onActivate(%this)
  323. {
  324.     GameBase::playSequence(%this,0,power);
  325. }
  326.  
  327. function Turret::onDeactivate(%this)
  328. {
  329.     GameBase::stopSequence(%this,0);
  330.     Turret::checkOperator(%this);
  331. }
  332.  
  333. function Turret::onSetTeam(%this,%oldTeam)
  334. {
  335.     if(GameBase::getTeam(%this) != Client::getTeam(GameBase::getControlClient(%this))) 
  336.         Turret::checkOperator(%this);
  337.  
  338. }
  339.  
  340. function Turret::checkOperator(%this)
  341. {
  342.    %cl = GameBase::getControlClient(%this);
  343.    if(%cl != -1) {
  344.        %pl = Client::getOwnedObject(%cl);
  345.         Player::setMountObject(%pl, -1,0);
  346.        Client::setControlObject(%cl, %pl);
  347.    }
  348.     Client::setGuiMode(%cl,2);
  349. }
  350.  
  351. function Turret::onPower(%this,%power,%generator)
  352. {
  353.     if (%power) {
  354.         %this.shieldStrength = 0.03;
  355.         GameBase::setRechargeRate(%this,10);
  356.     }
  357.     else {
  358.         %this.shieldStrength = 0;
  359.         GameBase::setRechargeRate(%this,0);
  360.         Turret::checkOperator(%this);
  361.     }
  362.     GameBase::setActive(%this,%power);
  363. }
  364.  
  365. function Turret::onEnabled(%this)
  366. {
  367.     if (GameBase::isPowered(%this)) {
  368.         %this.shieldStrength = 0.03;
  369.         GameBase::setRechargeRate(%this,10);
  370.         GameBase::setActive(%this,true);
  371.     }
  372. }
  373.  
  374. function Turret::onDisabled(%this)
  375. {
  376.     %this.shieldStrength = 0;
  377.     GameBase::setRechargeRate(%this,0);
  378.     Turret::onDeactivate(%this);
  379. }
  380.  
  381. function Turret::onDestroyed(%this)
  382. {
  383.     StaticShape::objectiveDestroyed(%this);
  384.     %this.shieldStrength = 0;
  385.     GameBase::setRechargeRate(%this,0);
  386.     Turret::onDeactivate(%this);
  387.     Turret::objectiveDestroyed(%this);
  388.     calcRadiusDamage(%this, $DebrisDamageType, 2.5, 0.05, 25, 9, 3, 0.40, 
  389.         0.1, 200, 100); 
  390. }
  391.  
  392. function Turret::onDamage(%this,%type,%value,%pos,%vec,%mom,%object)
  393. {
  394.    if(%this.objectiveLine)
  395.         %this.lastDamageTeam = GameBase::getTeam(%object);
  396.     %TDS= 1;
  397.     if(GameBase::getTeam(%this) == GameBase::getTeam(%object)) {
  398.         %name = GameBase::getDataName(%this);
  399.         if(%name != DeployableTurret && %name != CameraTurret )    
  400.             %TDS = $Server::TeamDamageScale;
  401.     }
  402.     StaticShape::shieldDamage(%this,%type,%value * %TDS,%pos,%vec,%mom,%object);
  403. }
  404.  
  405. function Turret::onControl (%this, %object)
  406. {
  407.     %client = Player::getClient(%object);
  408.     Client::sendMessage(%client,0,"Controlling turret " @ %this);
  409. }
  410.  
  411. function Turret::onDismount (%this, %object)
  412. {
  413.     %client = Player::getClient(%object);
  414.     Client::sendMessage(%client,0,"Leaving turret " @ %this);
  415. }
  416.  
  417. //function Turret::onCollision (%this, %object)
  418. //{
  419. //    if (getObjectType (%object) == "Player")
  420. //        {
  421. //            Player::mountObject (%object, %this);
  422. //        }
  423. //}
  424.